home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…ry 5: (Reseller Edition) / Apple Reference & Presentations Library 5.0 (Reseller Edition).iso / 5-Fonts & Software / HyperCard 1.2.5 / Help Stacks / Help / card_42102.txt < prev    next >
Text File  |  1987-11-25  |  2KB  |  106 lines

  1. -- card: 42102 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 4507
  5. -- name: 
  6.  
  7.  
  8. -- part 4 (button)
  9. -- low flags: 00
  10. -- high flags: 0000
  11. -- rect: left=218 top=291 right=314 bottom=247
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 1014 / 1014
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: 
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   visual effect wipe down
  23.   go to card id 41109
  24. end mouseUp
  25.  
  26.  
  27.  
  28. -- part 13 (field)
  29. -- low flags: 81
  30. -- high flags: 2004
  31. -- rect: left=184 top=149 right=275 bottom=376
  32. -- title width / last selected line: 0
  33. -- icon id / first selected line: 0 / 0
  34. -- text alignment: 0
  35. -- font id: 2
  36. -- text size: 12
  37. -- style flags: 0
  38. -- line height: 16
  39. -- part name: 
  40. ----- HyperTalk script -----
  41. on mouseUp
  42.   hide card field 1
  43. end mouseUp
  44.  
  45.  
  46. -- part 15 (button)
  47. -- low flags: 00
  48. -- high flags: 0000
  49. -- rect: left=170 top=271 right=295 bottom=196
  50. -- title width / last selected line: 0
  51. -- icon id / first selected line: 0 / 0
  52. -- text alignment: 1
  53. -- font id: 0
  54. -- text size: 12
  55. -- style flags: 0
  56. -- line height: 16
  57. -- part name: 
  58. ----- HyperTalk script -----
  59. on mouseUp
  60.   if visible of card field 1 then hide card field 1
  61.   else show card field 1
  62. end mouseUp
  63.  
  64.  
  65.  
  66. -- part contents for background part 1
  67. ----- text -----
  68. A container is a place you can store a value‚Äîa number or a piece of text.  Containers include:
  69.  
  70. Put 5 into it  --a place for temporary results
  71.  
  72. Put "Good Morning" into the message box--Synonymns are msg, message, or message window.
  73. Add field "New Charge" to field "Total"
  74.  
  75. Put "this text" into selection--replaces current selection.                                                                                    
  76.  
  77. A temporary container you name and use within the
  78. script.*
  79.  
  80.  
  81. -- part contents for background part 44
  82. ----- text -----
  83. Containers
  84.  
  85.  
  86. it
  87.  
  88. [the] message 
  89.  
  90. fields
  91.  
  92.  [the] selection
  93.  
  94. variable
  95.  
  96. -- part contents for background part 43
  97. ----- text -----
  98. 267,189
  99.  
  100. -- part contents for background part 2
  101. ----- text -----
  102. Introduction to HyperTalk (cont.)
  103.  
  104. -- part contents for card part 13
  105. ----- text -----
  106. A local variable is named and used temporarily within a script.  "Put 3 into TempValue", for example.  A global variable retains its value across scripts.  For example, "global userName".